home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer (Italian) 27 / PC Gamer IT CD 27.iso / MEDIA / STORE.DXR / Internal_63_help button.ls < prev    next >
Encoding:
Text File  |  1997-12-01  |  778 b   |  31 lines

  1. on mouseEnter me
  2.   cursor(280)
  3.   set the member of sprite the currentSpriteNum to "help.roll"
  4.   set the text of field "rollover text" to "Click here to view more information about this store."
  5. end
  6.  
  7. on mouseLeave me
  8.   cursor(-1)
  9.   set the member of sprite the currentSpriteNum to "help"
  10.   set the text of field "rollover text" to " "
  11. end
  12.  
  13. on mouseDown me
  14.   if the visible of sprite 70 = 0 then
  15.     set the visible of sprite 70 to 1
  16.     set the visible of sprite 71 to 1
  17.   else
  18.     set the visible of sprite 70 to 0
  19.     set the visible of sprite 71 to 0
  20.   end if
  21.   set the member of sprite the currentSpriteNum to "help.press"
  22. end
  23.  
  24. on mouseUp me
  25.   set the member of sprite the currentSpriteNum to "help.roll"
  26. end
  27.  
  28. on getBehaviorDescription
  29.   return "Toggles the help screen."
  30. end
  31.